home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší České Hry / Nej české hry.iso / hry / vesmirna becherovka / 2004 Vesmírná Becherovka / Becherovka.exe / scripts / DefineSprite_3513 / frame_3 / DoAction.as < prev   
Encoding:
Text File  |  2004-09-30  |  1.1 KB  |  62 lines

  1. if(B1A)
  2. {
  3.    Text1 = "To je ale horko, co?";
  4.    if(_root.menu.eng)
  5.    {
  6.       Text1 = "It\'s hot, isn\'t it?";
  7.    }
  8. }
  9. else
  10. {
  11.    Text1 = "";
  12.    setProperty("But1", _visible, false);
  13. }
  14. if(B1B and _root.dvere)
  15. {
  16.    Text2 = "Nev{invalid_utf8=237}te co je za tou zamknutou br{invalid_utf8=225}nou?";
  17.    if(_root.menu.eng)
  18.    {
  19.       Text2 = "Do you know what is behind this locked gate?";
  20.    }
  21. }
  22. else
  23. {
  24.    Text2 = "";
  25.    setProperty("But2", _visible, false);
  26. }
  27. if(B1C)
  28. {
  29.    Text3 = "L{invalid_utf8=233}t{invalid_utf8=225} odsud n{invalid_utf8=236}co na Zemi?";
  30.    if(_root.menu.eng)
  31.    {
  32.       Text3 = "Is there going something to Earth?";
  33.    }
  34. }
  35. else
  36. {
  37.    Text3 = "";
  38.    setProperty("But3", _visible, false);
  39. }
  40. if(B1D)
  41. {
  42.    Text4 = "No nic, tak j{invalid_utf8=225} abych {invalid_utf8=154}el";
  43.    if(_root.menu.eng)
  44.    {
  45.       Text4 = " I have to go.";
  46.    }
  47. }
  48. else
  49. {
  50.    Text4 = "";
  51.    setProperty("But4", _visible, false);
  52. }
  53. But1.Varianta = "A";
  54. But2.Varianta = "B";
  55. But3.Varianta = "C";
  56. But4.Varianta = "D";
  57. Level = "1";
  58. But1.Enabled = B1A;
  59. But2.Enabled = B1B and _root.dvere;
  60. But3.Enabled = B1C;
  61. But4.Enabled = B1D;
  62.